home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Tele / Internet / NewsWatch Folder / headers / ScrollStuff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-03  |  669 b   |  23 lines  |  [TEXT/MPS ]

  1. #ifndef _SCROLLSTUFF_
  2. #define _SCROLLSTUFF_
  3.  
  4. #define kVRef        0
  5. #define kHRef        1
  6.  
  7. #define kTextWidth    10
  8. #define kMaxColumns    160
  9.  
  10.  
  11. ControlHandle hScrollCont(WindowPtr window);
  12. ControlHandle vScrollCont(WindowPtr window);
  13. long sign(long longVar);
  14. short LinesInText(TEHandle theTE);
  15. void MoveText(WindowPtr window,ControlHandle theControl);
  16. void AdjustScrollBar(WindowPtr window);
  17. void ScrollChar(WindowPtr window,short charPos,Boolean toBottom);
  18. void CheckInsertion(WindowPtr window);
  19. pascal void scroll_action(ControlHandle scrollBar,short part);
  20. void DoScrollers(ControlHandle scrollBar,short part,Point localMouse);
  21. pascal Boolean AutoScroll(void);
  22.  
  23. #endif _SCROLLSTUFF_